home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / conf / access.conf next >
Text File  |  1997-12-10  |  2KB  |  76 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://www.apache.org/
  3.  
  4. # This file defines server settings which affect which types of services
  5. # are allowed, and in what circumstances.
  6.  
  7. # Each directory to which Apache has access, can be configured with respect
  8. # to which services and features are allowed and/or disabled in that
  9. # directory (and its subdirectories).
  10.  
  11. # Originally by Rob McCool
  12.  
  13. # This should be changed to whatever you set DocumentRoot to.
  14.  
  15. <Directory apache:htdocs>
  16.  
  17. # This may also be "None", "All", or any combination of "Indexes",
  18. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  19.  
  20. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  21. # doesn't give it to you (or at least, not yet).
  22.  
  23. Options Includes Indexes FollowSymLinks ExecCGI
  24.  
  25. # This controls which options the .htaccess files in directories can
  26. # override. Can also be "All", or any combination of "Options", "FileInfo",
  27. # "AuthConfig", and "Limit"
  28.  
  29. AllowOverride None
  30.  
  31. # Controls who can get stuff from this server.
  32.  
  33. order allow,deny
  34. allow from all
  35.  
  36. </Directory>
  37.  
  38. # @@ServerRoot@@/cgi-bin should be changed to whatever your ScriptAliased
  39. # CGI directory exists, if you have that configured.
  40.  
  41. <Directory apache:cgi-bin>
  42. AllowOverride None
  43. Options None
  44. </Directory>
  45.  
  46. # Allow server status reports, with the URL of http://servername/server-status
  47. # Change the ".your_domain.com" to match your domain to enable.
  48.  
  49. <Location /server-status>
  50. SetHandler server-status
  51.  
  52. #order deny,allow
  53. #deny from all
  54. #allow from .your_domain.com
  55. </Location>
  56.  
  57. <Location /info>
  58. SetHandler server-info
  59. order allow,deny
  60. allow from all
  61. </Location>
  62. # There have been reports of people trying to abuse an old bug from pre-1.1
  63. # days.  This bug involved a CGI script distributed as a part of Apache.
  64. # By uncommenting these lines you can redirect these attacks to a logging
  65. # script on phf.apache.org.  Or, you can record them yourself, using the script
  66. # support/phf_abuse_log.cgi.
  67.  
  68. #<Location /cgi-bin/phf*>
  69. #deny from all
  70. #ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  71. #</Location>
  72.  
  73. # You may place any other directories or locations you wish to have
  74. # access information for after this one.
  75.  
  76.